home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Dev / Triton / Developer / DemoSource / Makefile < prev    next >
Makefile  |  1995-06-28  |  890b  |  42 lines

  1. #
  2. #  Triton - The object oriented GUI creation system for the Amiga
  3. #  Written by Stefan Zeiger in 1993-1995
  4. #
  5. #  (c) 1993-1995 by Stefan Zeiger
  6. #  You are hereby allowed to use this source or parts of it for
  7. #  creating programs for AmigaOS which use the Triton GUI creation
  8. #  system. All other rights reserved.
  9. #
  10. #  Makefile - Makefile for gcc
  11. #
  12.  
  13.  
  14. CC    = gcc
  15.  
  16. CFLAGS    = -O2
  17.  
  18. LFLAGS    = -ltriton -lauto
  19.  
  20. all:    Demo EnvPrint trLogo ToolManager1 ToolManager2 ToolManager3 ProgInd
  21.  
  22. Demo: Demo.c
  23.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  24.  
  25. EnvPrint: EnvPrint.c
  26.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  27.  
  28. trLogo: trLogo.c
  29.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  30.  
  31. ToolManager1: ToolManager1.c
  32.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  33.  
  34. ToolManager2: ToolManager2.c
  35.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  36.  
  37. ToolManager3: ToolManager3.c
  38.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  39.  
  40. ProgInd: ProgInd.c
  41.     $(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
  42.